home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl151s.zip / INCLUDE / LIST.H < prev    next >
C/C++ Source or Header  |  1997-01-15  |  295b  |  14 lines

  1. #ifndef _LIST_H
  2. #define _LIST_H
  3.  
  4. /*
  5.  * Linked list type.  Used for filenames, module number list, segment lists
  6.  */
  7. typedef struct _list_ {
  8.     struct _list_ *link;        /* Link to next element */
  9.     void *data;                            /* Generic data */
  10. } LIST;
  11.  
  12. #include "list.p"
  13.  
  14. #endif /* _LIST_H */